home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BBS in a Box 11
/
AMUG BBS in a Box Volume XI (April 1994) (MacWizards).iso
/
Files
/
Tele
/
D-F
/
DIALSC16.sit
/
DialScript 1.6
/
Examples
/
DelayNext.ds
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-11-03
|
379 b
|
15 lines
|
[
TEXT/dIsR
]
script DelayNext
-- Execution begins at the first state-- "one" in this case
state one
display "I'll wait ten seconds and then go to the next state";
delay 10;
next two;
display "This statement never gets executed";
end;
state two
display "I am at state two";
end; -- Script terminates when it hits state "end"
end;